home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000114_news@columbia.edu _Thu Sep 23 16:20:42 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA01274
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 23 Sep 1999 16:20:42 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA23389
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 23 Sep 1999 16:00:00 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: rzsz with C-kermit & Solaris
  11. Date: 23 Sep 1999 20:00:00 GMT
  12. Organization: Columbia University
  13. Message-ID: <7se0s0$mqr$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <37ea7bcf.200731823@news.mindspring.com>,
  17. David Price <djprice@mindspring.com> wrote:
  18.  
  19. [asking about using rz/sz as an external protocol to C-Kermit...]
  20.  
  21. : fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  22. : >
  23. : >Read any of:
  24. : >
  25. : > 1. Chapter 14 of "Using C-Kermit": Using External Protocols.
  26. : >
  27. : > 2. Item 38 of the Kermit FAQ:
  28. : >
  29. : >      http://www.columbia.edu/kermit/faq.html
  30. : >      ftp://kermit.columbia.edu/kermit/faq.txt
  31. : Thanks for the pointers.  I have purchased your "Using C-Kermit" and
  32. : have found it an extremely useful and well written book.
  33. : Your item 38 in the Kermit FAQ has me somewhat confused.  In
  34. : particular, choice 3 to "License modern versions .... from Omen" - do
  35. : you mean simply to download the lastest version on Omen's web site or
  36. : is there some other version that must be purchased?  I have heard this
  37. : same thing from others as well from others.  Some have recommended
  38. : crzsz (I did try this and did not have any success).  
  39. I don't know.  Omen Technology is its own company with its own policies
  40. and products.
  41.  
  42. : The above problem appears to have had nothing to do with Kermit and sz
  43. : - it was a basic scripting issue on Solaris.  I say "appears" because
  44. : I did see something going out the modem as well as in the /tmp/szlog
  45. : but have not yet been able to contact the remote technical contact to
  46. : verify the condition of the file I send.  The following redirection
  47. : metacharacters solved the above problem:
  48. :  !sz -v file_to_send </dev/cua/b >/dev/cua/b 2>&1
  49. If your sz program transfers files on standard input and standard output,
  50. it can be redirected this way, or for that matter treated as an external
  51. protocol by C-Kermit as described in Chapter 14 of the manual, in which
  52. case you need only:
  53.  
  54.   set protocol zmodem
  55.  
  56. and then use regular file-transfer commands like SEND, etc.
  57.  
  58. Whether your sz program uses stdio is an issue you'll need resolve with
  59. the supplier of your sz program.
  60.  
  61. I might suggest that if you could Kermit protocol instead of Zmodem in
  62. this sitation, your task would be much simplified.  However, I can't speak
  63. for Omen or its products.
  64.  
  65. - Frank